24-11-2021

Part one

Slide With Overview

  • Part 1
    • Dataset
    • Scatterplot
    • Interactive scatterplot
    • Some aligned equations
  • Part 2
    • R-Code for a summary
    • Cached R code
    • References

note: ! it is difficult to design a two-column slide. You cannnot easily choose where the page breaks.

Swiss dataset

The Swiss dataset is standard included in R, (R Core Team 2021.) The extensive data (all provinces, not only the french-speaking) is managed by Princeton University (n.d.).

Scatterplot

Interactive scatterplot

Some aligned equations

\[ \begin{align} \frac{1}{2} &= b + c^2, \\ \frac{1}{2}-c^2&=b, \\\mbox{left side} &= \text{right side,} \\\text{left side + something} &\geq \text{right side,} \end{align} \]

part 2: more slides

R-Code, Displayed But Not Executed

dat %>%
  filter(Catholic >= 50) %>%
  summarise("Catholic regions" = n())

Cached R-code

dim(dat)
## [1] 47  6
ncol(dat)
## [1] 6

References